home *** CD-ROM | disk | FTP | other *** search
- /*
- File: ToolWindow.h
-
- Contains: A simple tool palette window
-
- Written by: Dave Falkenburg
-
- Copyright: © 1993-94 by Dave Falkenburg, all rights reserved.
-
- Change History (most recent first):
-
- */
-
- #ifndef _TOOLWINDOW_
- #define _TOOLWINDOW_
-
- #ifndef _WINDOW_
- #include "Window.h"
- #endif
-
- typedef short ToolTemplateID;
-
- class TToolWindow : public TWindow
- {
- private:
- ToolTemplateID fTemplateID;
-
- public:
- TToolWindow(ToolTemplateID toolTemplate);
-
- virtual WindowPtr MakeNewWindow(WindowPtr behindWindow);
- };
-
- #endif
-